widget_props[PROP_OVERFLOW] =
g_param_spec_enum ("overflow",
P_("Overflow"),
- P_("How content outside the widget's content area is treated"),
+ P_("How content outside the widget’s content area is treated"),
GTK_TYPE_OVERFLOW,
GTK_OVERFLOW_VISIBLE,
GTK_PARAM_READWRITE|G_PARAM_EXPLICIT_NOTIFY);
if (!g_file_get_contents (filename, &buffer, NULL, &error))
{
- g_printerr (_("Can’t load '%s': %s\n"), filename, error->message);
+ g_printerr (_("Can’t load “%s”: %s\n"), filename, error->message);
return FALSE;
}
context = g_markup_parse_context_new (&parser, G_MARKUP_TREAT_CDATA_AS_TEXT, &data, NULL);
if (!g_markup_parse_context_parse (context, buffer, -1, &error))
{
- g_printerr (_("Can’t parse '%s': %s\n"), filename, error->message);
+ g_printerr (_("Can’t parse “%s”: %s\n"), filename, error->message);
return FALSE;
}
if (!g_file_get_contents (data.output_filename, &content, &length, &error))
{
- g_printerr (_("Failed to read '%s': %s\n"), data.output_filename, error->message);
+ g_printerr (_("Failed to read “%s”: %s\n"), data.output_filename, error->message);
return FALSE;
}
if (!g_file_set_contents (data.input_filename, content, length, &error))
{
- g_printerr (_("Failed to write %s: '%s'\n"), data.input_filename, error->message);
+ g_printerr (_("Failed to write %s: “%s”\n"), data.input_filename, error->message);
return FALSE;
}
}